i2c: mvtwsi: Fix problem with baud rate calculation
authorStefan Roese <[email protected]>
Wed, 18 Mar 2015 08:30:54 +0000 (09:30 +0100)
committerHeiko Schocher <[email protected]>
Wed, 18 Mar 2015 08:48:42 +0000 (09:48 +0100)
commitf582a1583b2c7ae91737f3b1a0b850e7f4ef68bb
tree1301c2bbd5c9f0a2f1bdadfdfdd31c0b0c1b5314
parente6fbc3e4f1f2f974ec8efe9d52cfcb22b87f6294
i2c: mvtwsi: Fix problem with baud rate calculation

The current implementation for baudrate calculation is incorrect.
This part from the formula:

"2 ^ (n + 1)" is not equivalent to (1 << n) but to (2 << n)!

This patch fixes this and moves this calculation to a function instead of using a macro.
This new function is taken from the Linux kernel.

This was detected and tested on the Marvell Armada A38x DB-88F6820-GP eval board.

Signed-off-by: Stefan Roese <[email protected]>
Cc: Prafulla Wadaskar <[email protected]>
Cc: Luka Perkov <[email protected]>
Cc: Hans de Goede <[email protected]>
Cc: Ian Campbell <[email protected]>
Cc: Heiko Schocher <[email protected]>
Acked-by: Hans de Goede <[email protected]>
drivers/i2c/mvtwsi.c